From 79aa4fbfc9e522088b6ccd67ef11204387907b0d Mon Sep 17 00:00:00 2001 From: robertl Date: Mon, 20 Jun 2005 22:16:44 +0000 Subject: [PATCH] Avoid sign warning. --- gpsbabel/garmin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/garmin.c b/gpsbabel/garmin.c index a5296f229..935266c29 100644 --- a/gpsbabel/garmin.c +++ b/gpsbabel/garmin.c @@ -696,7 +696,7 @@ d103_symbol_from_icon_number(unsigned int n) static int d103_icon_number_from_symbol(const char *s) { - int i; + unsigned int i; if (NULL == s) { return 0; -- 2.30.2